home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / maple / readme < prev    next >
Text File  |  1994-06-21  |  3KB  |  79 lines

  1. The Maple Share Library
  2. =======================
  3.  
  4. In this directory, you will find the files
  5.  
  6. README    -- this file
  7. address    -- internet numbers, important addresses
  8. fixes    -- instructions for installing updates to the Maple library
  9. guide    -- instructions for contributing code to the Maple share library
  10. agree   -- a form to be signed by users who wish to contribute code
  11. usage   -- instructions for using code in the Maple share library
  12. ftp    -- other ftp sites with Maple codes
  13. ls-lR   -- a Unix file listing the dates of all files in the share library
  14.  
  15. and the subdirectories
  16.  
  17. 4.3    -- code for Maple version 4.3
  18. 5.0    -- code for Maple V
  19. 5.2    -- code for Maple V Release 2
  20. MTN    -- software for preparing articles for the Maple Technical Newsletter
  21.  
  22. Under the 4.3, 5.0 and 5.2 subdirectories, you will find the directories
  23.  
  24. lib    -- bug fixes, help file corrections, and efficiency improvements
  25. share    -- Maple codes (routines) and documentation contributed by Maple users
  26. test    -- Test files (containing additional test examples)
  27.  
  28. and the files
  29.  
  30. lib.tar.Z    -- compressed Unix tar file for the ".m" files under lib
  31. share.tar.Z    -- compressed Unix tar file for the share directory
  32. text.tar.Z    -- compressed Unix tar file for the test directory
  33.  
  34. The lib directory
  35. =================
  36.  
  37. Contains bug fixes/updates to Maple library routines and help file corrections.
  38. Read the "fixes" file in this directory for installation directions.
  39.  
  40. The share directory
  41. ===================
  42.  
  43. The share directory contains Maple application codes and worksheets which
  44. have been contributed by various authors.  There you will find a file called
  45. CONTENTS which summarizes everything in the share directory.
  46.  
  47. In addition to Maple code and worksheets (.ms files), you will find additional
  48. documentation files.  Files ending in .ps are PostScript files, files ending
  49. in .tex are TeX and LaTeX files, files ending in .ms are Maple worksheets.
  50. Note also that the files summary, summary.tex, and summary.ms contains a
  51. summary of the new features in this version of Maple.
  52.  
  53. The Symbolic Computation Group of the university of Waterloo will endeavor
  54. to maintain these codes from version to version but makes no claims
  55. as to the correctness of these codes.
  56.  
  57. The lib.tar.Z, share.tar.Z, and test.tar.Z files are compressed
  58. Unix tar files for the lib, share, and test directories respectively.
  59. These files were created by executing these Unix commands
  60.  
  61.     tar cf lib.tar lib/*.m lib/*/*.m lib/*/*/*.m lib/*/*/*/*.m;
  62.         compress lib.tar
  63.     tar cf share.tar share;  compress share.tar
  64.     tar cf test.tar test;  compress test.tar
  65.  
  66. After copying these files, they can be unpacked by executing
  67.  
  68.     uncompress lib.tar;  tar xf lib.tar
  69.     uncompress share.tar;  tar xf share.tar
  70.     uncompress test.tar;  tar xf test.tar
  71.  
  72. Contributing code to the share library
  73. ======================================
  74.  
  75. Users are invited to contribute code to the Maple share library.
  76. If you wish to contribute routines and/or packages, you should read the
  77. file "guide" which contains guidelines for user contributions and the
  78. file "address" which contains the address of where to send your code.
  79.